Write a Python program that uses turtles to draw pictures like this as described below:

When executed, your program:
  1. Asks the user how many houses they wish to draw. It then proceeds to draw that many houses as described below.
  2. For each house, it prompts the user to enter:
    1. the x coordinate of the lower left corner of the house. Note: All prompts must specify the house number. For example, for the first house "Enter the x coordinate of the lower left corner of house 1: ", for the second house "Enter the x coordinate of the lower left corner of house 2: "
    2. the y coordinate of the lower left corner of the house
    3. the width of the rectangular body of the house
    4. the height of the rectangular body of the house
    5. the color of the body of the house
    6. the color of the roof of the house
    7. It then draws that house and labels it properly as "House 1", "House 2" etc. Note: You can write text to the screen using the write command. For example, if t is a reference to a turtle, and s = "hello", then t.write(s) writes the string "hello" to the screen at the turtle's location.

For example, the four houses shown in the picture correspond to the following inputs for location, dimensions, body color, and roof color. The width and height refer to the width and height of the rectangular body of the house.
  1. lower left corner at (10,10), width = 100, height = 200, green, red
  2. lower left corner at (-150, -130), width = 100, height = 50, blue, orange
  3. lower left corner at (-150, 230), width = 50, height = 75, red, yellow
  4. lower left corner at (180, -200), width = 75, height = 50, pink, blue